home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / xorg.preinst < prev    next >
Encoding:
Text File  |  2009-04-03  |  146 b   |  7 lines

  1. #!/bin/sh
  2. set -e
  3. # doc dir is now a symlink to xorg
  4. if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/xorg ]; then
  5.     rm -rf /usr/share/doc/xorg
  6. fi
  7.